

/* Section wrapper */
.service {
  margin-bottom: 60px;
  padding: 20px 40px;
}

/* Flex layout */
.service-box {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  flex-wrap: wrap;
}

/* Reverse for second section */
.service-box.reverse {
  flex-direction: row-reverse;
}

/* Image */
.service-img-wrapper {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

.service-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

/* Content */
.service-content {
  flex: 2;
  min-width: 300px;
}

.service-content h2 {
  color: #c2185b;
  margin: 0 0 12px;
  font-size: 1.6rem;
  font-weight: bold;
}

.price {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1rem;
}

.highlight {
  background: #c2185b;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

/* Buttons */
.btn-group {
  margin-top: 18px;
}

.btn-group button {
  background: #c2185b;
  color: #fff;
  border: none;
  padding: 10px 18px;
  margin: 5px 8px 0 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 0.95rem;
}

.btn-group button:hover {
  background: #a3154c;
}

/* 📱 Responsive */
@media (max-width: 900px) {
  .service-box,
  .service-box.reverse {
    flex-direction: column;
    text-align: center;
  }

  .service-img-wrapper {
    max-width: 100%;
  }

  .service-content {
    text-align: center;
  }

  .btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}


h1,h2,h4,h4,h5,h6{
  color: #c2185b !important;
}